home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / vol16n13.zip / OPENTR.ZIP / OT_SRC.ZIP / EXPDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-26  |  1KB  |  46 lines

  1. // ExpDlg.h : header file
  2. //
  3. // OpenTrap Version 1.00 by Gregory A. Wolking
  4. // Copyright ⌐ 1997 Ziff-Davis Publishing
  5. // First published in PC Magazine, US Edition, July 1997.
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8. // CExpDlg dialog
  9.  
  10. class CExpDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14.     CExpDlg(CWnd* pParent = NULL);   // standard constructor
  15.  
  16. // Dialog Data
  17.     //{{AFX_DATA(CExpDlg)
  18.     enum { IDD = IDD_EXPORT_DIALOG };
  19.     CButton    m_chkUseFilters;
  20.     BOOL    m_bUseFilters;
  21.     int        m_intFormat;
  22.     BOOL    m_bRecNums;
  23.     //}}AFX_DATA
  24.  
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CExpDlg)
  29.     protected:
  30.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31.     //}}AFX_VIRTUAL
  32.  
  33. // Implementation
  34. protected:
  35.  
  36.     // Generated message map functions
  37.     //{{AFX_MSG(CExpDlg)
  38.     virtual BOOL OnInitDialog();
  39.     afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  40.     //}}AFX_MSG
  41.     afx_msg void OnContextHelp();
  42.     DECLARE_MESSAGE_MAP()
  43. private:
  44.     UINT m_intHelpContext;
  45. };
  46.